home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0867.dms / q0867.adf / TRAPDOOR.LZH / Scripts / Poll < prev    next >
AmigaDOS Script File  |  1991-09-27  |  411b  |  16 lines

  1. .key args
  2. .bra {
  3. .ket }
  4.  
  5. ; This script is called every couple of minutes by Cron to make outgoing
  6. ; calls.
  7. ; It checks an environment variable to see if it is not already running.
  8. ; If it is already running (an earlier cronevent might have started it and
  9. ; it has not completed polling all the nodes yet), no action is taken.
  10.  
  11. if NOT $poll EQ true
  12.   setenv poll true
  13.   trappoll {args}
  14.   setenv poll false
  15. endif
  16.